home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / querywindow.php < prev    next >
PHP Script  |  2005-01-20  |  17KB  |  291 lines

  1. <?php
  2. /* $Id: querywindow.php,v 2.16 2005/01/20 16:38:46 mkkeck Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets the variables sent to this script, retains the db name that may have
  8.  * been defined as startup option and include a core library
  9.  */
  10. require_once('./libraries/grab_globals.lib.php');
  11. if (!empty($db)) {
  12.     $db_start = $db;
  13. }
  14.  
  15.  
  16. /**
  17.  * Gets a core script and starts output buffering work
  18.  */
  19. require_once('./libraries/common.lib.php');
  20. require_once('./libraries/ob.lib.php');
  21. if ($cfg['OBGzip']) {
  22.     $ob_mode = PMA_outBufferModeGet();
  23.     if ($ob_mode) {
  24.         PMA_outBufferPre($ob_mode);
  25.     }
  26. }
  27.  
  28. require_once('./libraries/relation.lib.php');
  29. $cfgRelation = PMA_getRelationsParam();
  30.  
  31. /**
  32.  * Get the list and number of available databases.
  33.  * Skipped if no server selected: in this case no database should be displayed
  34.  * before the user choose among available ones at the welcome screen.
  35.  */
  36. if ($server > 0) {
  37.     PMA_availableDatabases(); // this function is defined in "common.lib.php"
  38. } else {
  39.     $num_dbs = 0;
  40. }
  41.  
  42. // garvin: For re-usability, moved http-headers and stylesheets
  43. // to a seperate file. It can now be included by header.inc.php,
  44. // queryframe.php, querywindow.php.
  45.  
  46. require_once('./libraries/header_http.inc.php');
  47. require_once('./libraries/header_meta_style.inc.php');
  48. ?>
  49.  
  50. <script type="text/javascript" language="javascript">
  51. <!--
  52. function query_auto_commit() {
  53.     document.sqlform.submit();
  54. }
  55.  
  56. function query_tab_commit(tab) {
  57.     document.querywindow.querydisplay_tab.value = tab;
  58.     document.querywindow.submit();
  59.     return false;
  60. }
  61.  
  62. // js form validation stuff
  63. /**/
  64. var errorMsg0   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strFormEmpty']); ?>';
  65. var errorMsg1   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotNumber']); ?>';
  66. var errorMsg2   = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strNotValidNumber']); ?>';
  67. var noDropDbMsg = '<?php echo((!$GLOBALS['cfg']['AllowUserDropDatabase']) ? str_replace('\'', '\\\'', $GLOBALS['strNoDropDatabases']) : ''); ?>';
  68. var confirmMsg  = '<?php echo(($GLOBALS['cfg']['Confirm']) ? str_replace('\'', '\\\'', $GLOBALS['strDoYouReally']) : ''); ?>';
  69. /**/
  70. //-->
  71. </script>
  72. <script src="libraries/functions.js" type="text/javascript" language="javascript"></script>
  73. </head>
  74.  
  75. <body bgcolor="<?php echo ($cfg['QueryFrameJS'] ? $cfg['LeftBgColor'] : $cfg['RightBgColor']); ?>">
  76. <?php
  77. if ($cfg['QueryFrameJS'] && !isset($no_js)) {
  78.     $querydisplay_tab = (isset($querydisplay_tab) ? $querydisplay_tab : $cfg['QueryWindowDefTab']);
  79.  
  80.     if ($cfg['LightTabs']) {
  81.         echo ' ';
  82.     } else {
  83.     echo '<table border="0" cellspacing="0" cellpadding="0" width="100%">' . "\n"
  84.        . '    <tr>' . "\n"
  85.        . '        <td class="nav" align="left" nowrap="nowrap" valign="bottom">'
  86.        . '            <table border="0" cellpadding="0" cellspacing="0"><tr>'
  87.        . '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="2" height="1" border="0" alt="" /></td>'
  88.        . '                <td class="navSpacer"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  .'" width="1" height="1" border="0" alt="" /></td>';
  89.     }
  90.     echo "\n";
  91.     echo PMA_printTab(($GLOBALS['cfg']['PropertiesIconic'] != false ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_sql.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strSQL.'" />' : '') . $strSQL, '#', '', ' onclick="javascript:query_tab_commit(\'sql\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'sql' ? TRUE : FALSE));
  92.     echo PMA_printTab(($GLOBALS['cfg']['PropertiesIconic'] != false ? '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_import.png" width="16" height="16" border="0" hspace="2" align="middle" alt="'.$strImportFiles.'" />' : '') . $strImportFiles, '#', '', ' onclick="javascript:query_tab_commit(\'files\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'files' ? TRUE : FALSE));
  93.     echo PMA_printTab($strQuerySQLHistory, '#', '', ' onclick="javascript:query_tab_commit(\'history\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'history' ? TRUE : FALSE));
  94.  
  95.     if ($cfg['QueryWindowDefTab'] == 'full') {
  96.         echo PMA_printTab($strAll, '#', '', ' onclick="javascript:query_tab_commit(\'full\');return false;"', '', '', (isset($querydisplay_tab) && $querydisplay_tab == 'full' ? TRUE : FALSE));
  97.     }
  98.  
  99.     if (!$cfg['LightTabs']) {
  100.     echo '                <td nowrap="nowrap"><img src="' .$GLOBALS['pmaThemeImage'] . 'spacer.png'  . '" width="2" height="1" border="0" alt="" /></td>'
  101.        . '            </tr></table>' . "\n"
  102.        . '        </td>' . "\n"
  103.        . '    </tr>' . "\n"
  104.        . '</table>';
  105.     } else {
  106.         echo '<br />';
  107.     }
  108. } else {
  109.     $querydisplay_tab = 'full';
  110. }
  111.  
  112. ?>
  113. <br />
  114. <?php
  115. if ($cfg['PropertiesIconic'] == true) {
  116.     // We need to copy the value or else the == 'both' check will always return true
  117.     $propicon = (string)$cfg['PropertiesIconic'];
  118.  
  119.     if ($propicon == 'both') {
  120.         $iconic_spacer = '<div class="nowrap">';
  121.     } else {
  122.         $iconic_spacer = '';
  123.     }
  124.  
  125.     $titles['Change']        = $iconic_spacer . '<img hspace="2" width="16" height="16" src="' . $pmaThemeImage . 'b_edit.png" alt="' . $strChange . '" title="' . $strChange . '" border="0" />';
  126.  
  127.     if ($propicon == 'both') {
  128.         $titles['Change']        .= ' ' . $strChange . ' </div>';
  129.     }
  130. } else {
  131.     $titles['Change']        = $strChange;
  132. }
  133.  
  134. // Hidden forms and query frame interaction stuff
  135. if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
  136.  
  137.     $input_query_history = array();
  138.     $sql_history = array();
  139.     $dup_sql = array();
  140.  
  141.     if (isset($query_history_latest) && isset($query_history_latest_db) && $query_history_latest != '' && $query_history_latest_db != '') {
  142.         if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
  143.             PMA_setHistory((isset($query_history_latest_db) ? $query_history_latest_db : ''), (isset($query_history_latest_table) ? $query_history_latest_table : ''), $cfg['Server']['user'], $query_history_latest);
  144.         }
  145.  
  146.         $input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_history_latest . '" />';
  147.         $input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_latest_db) . '" />';
  148.         $input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '" />';
  149.  
  150.         $sql_history[] = '<li>'
  151.                        . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  152.                        . ' <a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($query_history_latest))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_latest_db) . '\'; document.querywindow.table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_latest_table) ? htmlspecialchars($query_history_latest_table) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_latest_db) . '] ' . urldecode($query_history_latest) . '</a>'
  153.                        . '</li>' . "\n";
  154.  
  155.         $sql_query = urldecode($query_history_latest);
  156.         $db = $query_history_latest_db;
  157.         $table = $query_history_latest_table;
  158.         $dup_sql[$query_history_latest] = true;
  159.     } elseif (isset($query_history_latest) && $query_history_latest != '') {
  160.         $sql_query = urldecode($query_history_latest);
  161.     }
  162.  
  163.     if (isset($sql_query)) {
  164.         $show_query = 1;
  165.     }
  166.  
  167.     if ($cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
  168.  
  169.         $temp_history = PMA_getHistory($cfg['Server']['user']);
  170.         if (is_array($temp_history) && count($temp_history) > 0) {
  171.             foreach ($temp_history AS $history_nr => $history_array) {
  172.                 if (!isset($dup_sql[$history_array['sqlquery']])) {
  173.                     $sql_history[] = '<li>'
  174.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  175.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . preg_replace('/(\n)/i', ' ', addslashes(htmlspecialchars($history_array['sqlquery']))) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($history_array['db']) . '\'; document.querywindow.table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($history_array['table']) ? htmlspecialchars($history_array['table']) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($history_array['db']) . '] ' . urldecode($history_array['sqlquery']) . '</a>'
  176.                                    . '</li>' . "\n";
  177.                     $dup_sql[$history_array['sqlquery']] = true;
  178.                 }
  179.             }
  180.         }
  181.  
  182.     } else {
  183.  
  184.         if (isset($query_history) && is_array($query_history)) {
  185.             $current_index = count($query_history);
  186.             foreach ($query_history AS $query_no => $query_sql) {
  187.                 if (!isset($dup_sql[$query_sql])) {
  188.  
  189.                     $input_query_history[] = '<input type="hidden" name="query_history[]" value="' . $query_sql . '" />';
  190.                     $input_query_history[] = '<input type="hidden" name="query_history_db[]" value="' . htmlspecialchars($query_history_db[$query_no]) . '" />';
  191.                     $input_query_history[] = '<input type="hidden" name="query_history_table[]" value="' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '" />';
  192.  
  193.                     $sql_history[] = '<li>'
  194.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'false\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">' . $titles['Change'] . '</a>'
  195.                                    . '<a href="#" onclick="document.querywindow.querydisplay_tab.value = \'' . (isset($querydisplay_tab) && $querydisplay_tab != 'full' ? 'sql' : 'full') . '\'; document.querywindow.query_history_latest.value = \'' . htmlspecialchars($query_sql) . '\'; document.querywindow.auto_commit.value = \'true\'; document.querywindow.db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.query_history_latest_db.value = \'' . htmlspecialchars($query_history_db[$query_no]) . '\'; document.querywindow.table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.query_history_latest_table.value = \'' . (isset($query_history_table[$query_no]) ? htmlspecialchars($query_history_table[$query_no]) : '') . '\'; document.querywindow.submit(); return false;">[' . htmlspecialchars($query_history_db[$query_no]) . '] ' . urldecode($query_sql) . '</a>'
  196.                                    . '</li>' . "\n";
  197.                     $dup_sql[$query_sql] = true;
  198.                 } // end if check if this item exists
  199.             } // end while print history
  200.         } // end if history exists
  201.  
  202.     } // end if DB-based history
  203. }
  204.  
  205. $url_query = PMA_generate_common_url(isset($db) ? $db : '', isset($table) ? $table : '');
  206. if (!isset($goto)) {
  207.     $goto = '';
  208. }
  209.  
  210. require_once './libraries/bookmark.lib.php';
  211. $is_inside_querywindow = TRUE;
  212. require './tbl_query_box.php';
  213.  
  214. // Hidden forms and query frame interaction stuff
  215. if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
  216.     if (isset($auto_commit) && $auto_commit == 'true') {
  217.     ?>
  218.         <script type="text/javascript" language="javascript">
  219.         query_auto_commit();
  220.         </script>
  221.     <?php
  222.     }
  223.  
  224.     if (isset($sql_history) && isset($querydisplay_tab) && ($querydisplay_tab == 'history' || $querydisplay_tab == 'full') && is_array($sql_history) && count($sql_history) > 0) {
  225.     ?>
  226.         <?php echo $strQuerySQLHistory . ':<br /><ul>' . implode('', $sql_history) . '</ul>'; ?>
  227.     <?php
  228.     }
  229. ?>
  230. <form action="querywindow.php" method="post" name="querywindow">
  231. <?php
  232.     echo PMA_generate_common_hidden_inputs('', '');
  233.     if (count($input_query_history) > 0) {
  234.         echo implode("\n", $input_query_history);
  235.     }
  236. ?>
  237.     <input type="hidden" name="db" value="<?php echo (empty($db) ? '' : htmlspecialchars($db)); ?>" />
  238.     <input type="hidden" name="table" value="<?php echo (empty($table) ? '' : htmlspecialchars($table)); ?>" />
  239.  
  240.     <input type="hidden" name="query_history_latest" value="" />
  241.     <input type="hidden" name="query_history_latest_db" value="" />
  242.     <input type="hidden" name="query_history_latest_table" value="" />
  243.  
  244.     <input type="hidden" name="previous_db" value="<?php echo htmlspecialchars($db); ?>" />
  245.  
  246.     <input type="hidden" name="auto_commit" value="false" />
  247.     <input type="hidden" name="querydisplay_tab" value="<?php echo $querydisplay_tab; ?>" />
  248. </form>
  249.  
  250. <?php
  251. }
  252.  
  253. $tmp_querydisplay_tab =  (isset($querydisplay_tab) ? $querydisplay_tab : $cfg['QueryWindowDefTab']);
  254. if ($tmp_querydisplay_tab == 'sql' || $tmp_querydisplay_tab == $cfg['QueryWindowDefTab']) {
  255. ?>
  256. <script type="text/jscript" language="javascript">
  257. <!--
  258.     if (document.getElementById && typeof(document.getElementById('sqlcontainer'))!='undefined') {
  259.         var newWidth  = document.getElementById('sqlcontainer').offsetWidth + 40;
  260.         var newHeight = document.getElementById('sqlcontainer').offsetHeight + 100;
  261.         self.resizeTo(newWidth, newHeight);
  262.     }
  263. //-->
  264. </script>
  265. <?php
  266. }
  267. ?>
  268. </body>
  269. </html>
  270.  
  271. <?php
  272. /**
  273.  * Close MySql connections
  274.  */
  275. if (isset($dbh) && $dbh) {
  276.     PMA_DBI_close($dbh);
  277. }
  278. if (isset($userlink) && $userlink) {
  279.     PMA_DBI_close($userlink);
  280. }
  281.  
  282.  
  283. /**
  284.  * Sends bufferized data
  285.  */
  286. if (isset($cfg['OBGzip']) && $cfg['OBGzip']
  287.     && isset($ob_mode) && $ob_mode) {
  288.      PMA_outBufferPost($ob_mode);
  289. }
  290. ?>
  291.